home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.plaf;
-
- import java.awt.Color;
-
- public class ColorUIResource extends Color implements UIResource {
- public ColorUIResource(float r, float g, float b) {
- super(r, g, b);
- }
-
- public ColorUIResource(int rgb) {
- super(rgb);
- }
-
- public ColorUIResource(int r, int g, int b) {
- super(r, g, b);
- }
-
- public ColorUIResource(Color c) {
- super(c.getRed(), c.getGreen(), c.getBlue());
- }
- }
-